From: Richard M. Stallman Date: Fri, 28 May 1993 00:55:10 +0000 (+0000) Subject: (install): Get the scripts from ${srcdir}, unlike the executables. X-Git-Tag: archive/raspbian/1%29.2+1-2+rpi1^2~5^2~95872 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:///%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:/?a=commitdiff_plain;h=b70cff717b6f580d5193a074df4d47fe3d80e10e;p=emacs.git (install): Get the scripts from ${srcdir}, unlike the executables. --- diff --git a/lib-src/Makefile.in b/lib-src/Makefile.in index eae3e5537dc..bf9b3e23115 100644 --- a/lib-src/Makefile.in +++ b/lib-src/Makefile.in @@ -138,10 +138,14 @@ ${archlibdir}: all install: ${archlibdir} @echo @echo "Installing utilities for users to run." - for file in ${INSTALLABLES} ${INSTALLABLE_SCRIPTS}; do \ + for file in ${INSTALLABLES} ; do \ cp $${file} ${bindir}/$${file}.new ; \ chmod 755 ${bindir}/$${file}.new ; \ done + for file in ${INSTALLABLE_SCRIPTS} ; do \ + cp ${srcdir}/$${file} ${bindir}/$${file}.new ; \ + chmod 755 ${bindir}/$${file}.new ; \ + done @echo @echo "Changing the owner and group of utility programs to \`bin'." @echo "(You may ignore errors here if you don't care about this.)"